home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / Nuntius 1.2 / src / Nuntius / UDiscListCmds.h < prev    next >
Encoding:
Text File  |  1994-03-06  |  483 b   |  24 lines  |  [TEXT/MPS ]

  1. // Copyright © 1992 Peter Speck, speck@dat.ruc.dk. All rights reserved.
  2. // UDiscListCmds.h
  3.  
  4. #define __UDISCLISTCMDS__
  5.  
  6. class TGroupDoc;
  7.  
  8.  
  9. class TOpenArticleCommand : public TCommand
  10. {
  11.     public:
  12.         pascal void DoIt();
  13.  
  14.         TOpenArticleCommand();
  15.         void IOpenArticleCommand(TGroupDoc *doc, 
  16.                                                         TLongintList *discIndexList, 
  17.                                                         Boolean removeSelection);
  18.         pascal void Free();
  19.     private:
  20.         TGroupDoc *fDoc;
  21.         TLongintList *fDiscIndexList;
  22.         Boolean fRemoveSelection;
  23. };
  24.